@import 'https://fonts.googleapis.com/css?family=Montserrat:300, 400, 700&display=swap';
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    outline:none;
    font-family: 'Montserrat', sans-serif;
    font-size:10px;
}
#header {
	position: fixed;
	z-index: 1000;
	left: 0;
	top: 0;
	width: 100vw;
	height: auto;
}
#header .header {
	min-height: 8vh;
	background-color: rgba(31, 30, 30, 0.24);
	transition: 0.3s ease background-color;
}
#header .nav-bar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	height: 100%;
	max-width: 1300px;
	padding: 0 10px;
}
#header .nav-list ul {
	list-style: none;
	position: absolute;
	background-color: rgb(8, 8, 8);
	width: 100vw;
	height: 100vh;
	left: 100%;
	top: 0;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	z-index: 1;
	overflow-x: hidden;
	transition: 0.5s ease left;
}
#header .nav-list ul.active {
	left: 0%;
}
#header .nav-list ul a {
	font-size: 2.5rem;
	font-weight: 500;
	letter-spacing: 0.2rem;
	text-decoration: none;
	color: white;
	text-transform: uppercase;
	padding: 20px;
	display: block;
}
#header .nav-list ul a::after {
	content: attr(data-after);
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%) scale(0);
	color: rgba(240, 248, 255, 0.021);
	font-size: 13rem;
	letter-spacing: 50px;
	z-index: -1;
	transition: 0.3s ease letter-spacing;
}
#header .nav-list ul li:hover a::after {
	transform: translate(-50%, -50%) scale(1);
	letter-spacing: initial;
}
#header .nav-list ul li:hover a {
	color: crimson;
}
#header .hamburger {
	height: 60px;
	width: 60px;
	display: inline-block;
	border: 3px solid white;
	border-radius: 50%;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 100;
	cursor: pointer;
	transform: scale(0.8);
	margin-right: 20px;
}
#header .hamburger:after {
	position: absolute;
	content: '';
	height: 100%;
	width: 100%;
	border-radius: 50%;
	border: 3px solid white;
	animation: hamburger_puls 1s ease infinite;
}
#header .hamburger .bar {
	height: 2px;
	width: 30px;
	position: relative;
	background-color: white;
	z-index: -1;
}
#header .hamburger .bar::after,
#header .hamburger .bar::before {
	content: '';
	position: absolute;
	height: 100%;
	width: 100%;
	left: 0;
	background-color: white;
	transition: 0.3s ease;
	transition-property: top, bottom;
}
#header .hamburger .bar::after {
	top: 8px;
}
#header .hamburger .bar::before {
	bottom: 8px;
}
#header .hamburger.active .bar::before {
	bottom: 0;
}
#header .hamburger.active .bar::after {
	top: 0;
}
@media only screen and (min-width: 1200px) {
	/* header */
	#header .hamburger {
		display: none;
	}
	#header .nav-list ul {
		position: initial;
		display: block;
		height: auto;
		width: fit-content;
		background-color: transparent;
	}
	#header .nav-list ul li {
		display: inline-block;
	}
	#header .nav-list ul li a {
		font-size: 1.8rem;
	}
	#header .nav-list ul a:after {
		display: none;
	}
}
@keyframes hamburger_puls {
	0% {
		opacity: 1;
		transform: scale(1);
	}
	100% {
		opacity: 0;
		transform: scale(1.4);
	}
}
.cta {
	display: inline-block;
	padding: 10px 30px;
	color: white;
	background-color: transparent;
	border: 2px solid crimson;
	font-size: 2rem;
	text-transform: uppercase;
	letter-spacing: 0.1rem;
	margin-top: 30px;
	transition: 0.3s ease;
	transition-property: background-color, color;
}
.cta:hover {
	color: white;
	background-color: crimson;
}
.brand h1 {
	font-size: 3rem;
	text-transform: uppercase;
	color: white;
}
.brand h1 span {
	color: crimson;
    font-size:3.5rem;
}
.container {
	min-height: 100vh;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}
a {
	text-decoration: none;
    color:Black;
}
body{
    background-color:black;
    font-size:20px;
    font-weight: 400;
    font-family: 'Roboto', sans-serif;
    margin-top: 100px;
}
.custom-box{
    max-width:700px;
    background-color:crimson;
    margin:40px auto;
    border-radius: 20px;
	content: fit-content;
    padding:30px;
}
.custom-box li{
	padding:10px 0;
	font-size: medium;
}
.custom-box.hide{
    display:none;
}
.custom-box::before, .custom-box::after{
    content: '';
    clear:both;
    display:table;
}
.home-box h3{
    font-size:20px;
    color:white;
    font-weight: 500;
    margin-bottom: 15px;
    line-height: 25px;
}
.home-box p{
    font-size:18px;
    color:white;
    margin-bottom: 10px;
    line-height: 20px
}
.btn{
    padding:20px 50px;
    background-color:black;
    color:white;
    border:none;
    font-size:15px;
    margin-top: 10px;
    border-radius:10px;
    font-family: 'Roboto', sans-serif;
    cursor:pointer;
}
.quiz-box .question-number{
    font-size:20px;
    color:white;
    font-weight:500;
    border-bottom: 1px solid #cccccc;
    padding: 10px;
    line-height: 25px;
}
.quiz-box .question-text{
    font-size:30px;
    color:white;
    font-weight:400;
    line-height:30px;
    padding:20px 0;
    margin:0;
}
.quiz-box .option-container .option{
    background-color:#ccc;
    margin:10px;
    padding:15px;
    font-size:20px;
    color:000;
    border-radius: 10px;
    cursor:pointer;
	opacity:0;
	animation: fadeIn 0.3s ease forwards;
	position:relative;
	overflow:hidden;
}
@keyframes fadeIn{
	0%{
		opacity:0;
	}
	100%{
		opacity:1;
	}
}
.quiz-box .option-container .option.correct,
.quiz-box .option-container .option.wrong{
	color:#fff;
}
.quiz-box .option-container .option.correct::before{
	content:'';
	position:absolute;
	left:0;
	top:0;
	height:100%;
	width:100%;
	background-color:green;
	z-index:-1;
	animation: slideIn .5s ease forwards;
}
.quiz-box .option-container .option.wrong::before{
	content:'';
	position:absolute;
	left:0;
	top:0;
	height:100%;
	width:100%;
	background-color:red;
	z-index:-1;
	animation: slideIn .5s ease forwards;
}
@keyframes slideIn {
	0%{
		transform: translateX(-100%);
	}
	100%{
		transform: translateX(0%);
	}
}

.quiz-box .option-container .option .already-answered{
	background-color: black;
}
.quiz-box .btn{
    margin:15px;
    background-color:#ccc;
    color:black;
    font-size:20px;
}
.quiz-box .answers-indicator{
    border-top: 1px solid #ccc;
}
.quiz-box .answers-indicator div{
    height:40px;
    width:40px;
    display:inline-block;
    background: #ccc;
    border-radius:50%;
    margin-right: 5px;
    margin-top:15px;
}

.quiz-box .answers-indicator div.correct{
	background-color: green;
	background-image: url("../Images/correct.png");
	background-size: 50%;
	background-repeat: no-repeat;
	background-position: center;
}
.quiz-box .answers-indicator div.wrong{
	background-color:red;
	background-image: url("../Images/wrong.png");
	background-size: 50%;
	background-repeat: no-repeat;
	background-position: center;
}

.result-box{
    text-align:center;
}
.result-box h1{
    font-size:35px;
    color:white;
}
.result-box table{
    width:100%;
    border-collapse:collapse;
    margin:30px 0;
    color:white;
}
.result-box table td{
    border:1px solid #ccc;
    padding:10px 15px;
    width:50%;
    text-align:left;
    font-size:20px;
}
.result-box .btn{
    background-color:#ccc;
    color:black;
    margin-right: 20px;
}

@media(max-width:767px){
	.result-box .btn{
		margin-bottom: 15px;
	}
	body{
		padding:15px;
	}
}

#footer {
	background-image: linear-gradient(60deg, #15191f 0%, #2e3f50 100%);
}
#footer .footer {
	min-height: 200px;
	flex-direction: column;
	padding-top: 50px;
	padding-bottom: 10px;
}
#footer h2 {
	color: white;
	font-weight: 500;
	font-size: 1.8rem;
	letter-spacing: 0.1rem;
	margin-top: 10px;
	margin-bottom: 10px;
}
#footer .social-icon {
	display: flex;
	margin-bottom: 50px;

}
#footer .social-item {
	height: 10px;
	width: 10px;
	margin: 0 20px;
	padding: 0 30px;
	size:10px;
}
#footer .social-item img {
	filter: grayscale(1);
	transition: 0.3s ease filter;
	height: 50px;
	width:50px;

}
#footer .social-item:hover img {
	filter: grayscale(0);
}
#footer p {
	color: white;
	font-size: 1.3rem;
}

.img1{
    height:25vh;
    width:70vh;
}